home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / netlog-1.02 / extract / chario.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-20  |  629 b   |  29 lines

  1. /*
  2.      extract - A network log processor
  3.      Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
  4.  
  5.      Please see the file `COPYING' for the complete copyright notice.
  6.  
  7. chario.h - 03/20/93
  8.  
  9. */
  10. #ifndef __CHARIO_H__
  11. #define __CHARIO_H__
  12.  
  13. extern int __lastchar, __pushed;
  14. #define pushchar(c) {__lastchar = c;__pushed=1;}
  15.  
  16. extern int fetchar(void);
  17. extern int getlinenum(void);
  18. extern char *getfilename(void);
  19. extern int addmembuf(char *, char *);
  20. extern int includemembuf(char *, char *);
  21. extern int addfile(char *);
  22. extern int includefile(char *);
  23.  
  24. #define NOERR 0
  25. #define RECURSE 1
  26. #define FILEERR 2
  27.  
  28. #endif
  29.